iswow64 0.1.0

Determines whether the current process is running under WOW64.
docs.rs failed to build iswow64-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

Determines whether the current process is running under WOW64.

Example:

extern crate iswow64;

let result = iswow64::iswow64();

println!("{:?}", result);

#[cfg(target_arch = "x86")]
assert_eq!(result.unwrap(), true);

#[cfg(target_arch = "x86_64")]
assert_eq!(result.unwrap(), false);